home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 4 / MacMania 4.toast / / Demo's / Igor Demo Pro / 1 PutContentsIn Igor Pro Folder / WaveMetrics Procedures / Utilities / String Utilities / NewString < prev    next >
Text File  |  1994-02-18  |  334b  |  26 lines

  1.  
  2. | This function generates a string of the desired length. It is typically used
  3. | with the FBinRead operation.
  4. Function/S NewString(n)
  5.     variable n
  6.     
  7.     String str1=""
  8.     do
  9.         if( n < 10 )
  10.             break
  11.         endif
  12.         str1 += "0123456789"
  13.         n -= 10
  14.     while(1)
  15.     do
  16.         if( n < 1 )
  17.             break;
  18.         endif
  19.         str1 += "A"
  20.         n -= 1
  21.     while(1)
  22.     return str1
  23. end
  24.  
  25.